home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Technical Documentation / Sample Code / DTS.Lib & Samples / DTS.Chat / App.protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-22  |  1.1 KB  |  59 lines  |  [TEXT/MPS ]

  1. #ifndef __APPPROTOS__
  2. #define __APPPROTOS__
  3.  
  4.  
  5. #include "DTS.Lib.protos.h"
  6.  
  7.  
  8. /* NOTE:  These prototypes are in a single file as they are the standard functions
  9. **        functions for this application shell.  You may wish to have separate
  10. **        files for the prototypes of functions you add to the shell.  They are all
  11. **        here in a single file for simplicity. */
  12.  
  13.  
  14.  
  15. /************** AECustom.c **************/
  16.  
  17. void            InitCustomAppleEvents(void);
  18. OSErr            SendMessage(FileRecHndl frHndl, short messageType);
  19.  
  20.  
  21.  
  22. /************** DoEvent.c **************/
  23.  
  24. void            DoEvent(EventRecord *event);
  25.  
  26.  
  27.  
  28. /************** EventLoop.c **************/
  29.  
  30. void            EventLoop(void);
  31.  
  32.  
  33.  
  34. /************** File2.c **************/
  35.  
  36. OSErr            DuplicateDocument(FileRecHndl oldFrHndl, FileRecHndl *newFrHndl);
  37.  
  38.  
  39.  
  40. /************** Help.c **************/
  41.  
  42. void            DynamicBalloonHelp(void);
  43.  
  44.  
  45.  
  46. /************** IdleTasks.c **************/
  47.  
  48. void            DoIdleTasks(EventRecord *event);
  49.  
  50.  
  51.  
  52. /************** Menu.c **************/
  53.  
  54. void            EnableOrDisableItem(MenuHandle menu, short item, Boolean enable);
  55.  
  56.  
  57.  
  58. #endif __APPPROTOS__
  59.